home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Young Minds
/
Young Minds Interactive CD-ROM.ISO
/
nethack
/
netquest.sh
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Linux/UNIX/POSIX Shell Script
|
1988-09-06
|
224 b
|
16 lines
#!/bin/sh
# SCCS Id: @(#)netquest.sh 1.4 87/08/08
QUESTDIR=/usr/games/lib/questdir
QUEST=$HACKDIR/netquest
MAXNROFPLAYERS=4
cd $QUESTDIR
case $1 in
-s*)
exec $QUEST $@
;;
*)
exec $QUEST $@ $MAXNROFPLAYERS
;;
esac